home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / code.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  10KB  |  341 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. """Utilities needed to emulate Python's interactive interpreter.
  5.  
  6. """
  7. import sys
  8. import traceback
  9. from codeop import CommandCompiler, compile_command
  10. __all__ = [
  11.     'InteractiveInterpreter',
  12.     'InteractiveConsole',
  13.     'interact',
  14.     'compile_command']
  15.  
  16. def softspace(file, newvalue):
  17.     oldvalue = 0
  18.     
  19.     try:
  20.         oldvalue = file.softspace
  21.     except AttributeError:
  22.         pass
  23.  
  24.     
  25.     try:
  26.         file.softspace = newvalue
  27.     except (AttributeError, TypeError):
  28.         pass
  29.  
  30.     return oldvalue
  31.  
  32.  
  33. class InteractiveInterpreter:
  34.     """Base class for InteractiveConsole.
  35.  
  36.     This class deals with parsing and interpreter state (the user's
  37.     namespace); it doesn't deal with input buffering or prompting or
  38.     input file naming (the filename is always passed in explicitly).
  39.  
  40.     """
  41.     
  42.     def __init__(self, locals = None):
  43.         '''Constructor.
  44.  
  45.         The optional \'locals\' argument specifies the dictionary in
  46.         which code will be executed; it defaults to a newly created
  47.         dictionary with key "__name__" set to "__console__" and key
  48.         "__doc__" set to None.
  49.  
  50.         '''
  51.         if locals is None:
  52.             locals = {
  53.                 '__name__': '__console__',
  54.                 '__doc__': None }
  55.         
  56.         self.locals = locals
  57.         self.compile = CommandCompiler()
  58.  
  59.     
  60.     def runsource(self, source, filename = '<input>', symbol = 'single'):
  61.         '''Compile and run some source in the interpreter.
  62.  
  63.         Arguments are as for compile_command().
  64.  
  65.         One several things can happen:
  66.  
  67.         1) The input is incorrect; compile_command() raised an
  68.         exception (SyntaxError or OverflowError).  A syntax traceback
  69.         will be printed by calling the showsyntaxerror() method.
  70.  
  71.         2) The input is incomplete, and more input is required;
  72.         compile_command() returned None.  Nothing happens.
  73.  
  74.         3) The input is complete; compile_command() returned a code
  75.         object.  The code is executed by calling self.runcode() (which
  76.         also handles run-time exceptions, except for SystemExit).
  77.  
  78.         The return value is True in case 2, False in the other cases (unless
  79.         an exception is raised).  The return value can be used to
  80.         decide whether to use sys.ps1 or sys.ps2 to prompt the next
  81.         line.
  82.  
  83.         '''
  84.         
  85.         try:
  86.             code = self.compile(source, filename, symbol)
  87.         except (OverflowError, SyntaxError, ValueError):
  88.             self.showsyntaxerror(filename)
  89.             return False
  90.  
  91.         if code is None:
  92.             return True
  93.         
  94.         self.runcode(code)
  95.         return False
  96.  
  97.     
  98.     def runcode(self, code):
  99.         '''Execute a code object.
  100.  
  101.         When an exception occurs, self.showtraceback() is called to
  102.         display a traceback.  All exceptions are caught except
  103.         SystemExit, which is reraised.
  104.  
  105.         A note about KeyboardInterrupt: this exception may occur
  106.         elsewhere in this code, and may not always be caught.  The
  107.         caller should be prepared to deal with it.
  108.  
  109.         '''
  110.         
  111.         try:
  112.             exec code in self.locals
  113.         except SystemExit:
  114.             raise 
  115.         except:
  116.             self.showtraceback()
  117.  
  118.         if softspace(sys.stdout, 0):
  119.             print 
  120.         
  121.  
  122.     
  123.     def showsyntaxerror(self, filename = None):
  124.         '''Display the syntax error that just occurred.
  125.  
  126.         This doesn\'t display a stack trace because there isn\'t one.
  127.  
  128.         If a filename is given, it is stuffed in the exception instead
  129.         of what was there before (because Python\'s parser always uses
  130.         "<string>" when reading from a string).
  131.  
  132.         The output is written by self.write(), below.
  133.  
  134.         '''
  135.         (type, value, sys.last_traceback) = sys.exc_info()
  136.         sys.last_type = type
  137.         sys.last_value = value
  138.         if filename and type is SyntaxError:
  139.             
  140.             try:
  141.                 (dummy_filename, lineno, offset, line) = (msg,)
  142.             except:
  143.                 pass
  144.  
  145.             value = SyntaxError(msg, (filename, lineno, offset, line))
  146.             sys.last_value = value
  147.         
  148.         list = traceback.format_exception_only(type, value)
  149.         map(self.write, list)
  150.  
  151.     
  152.     def showtraceback(self):
  153.         '''Display the exception that just occurred.
  154.  
  155.         We remove the first stack item because it is our own code.
  156.  
  157.         The output is written by self.write(), below.
  158.  
  159.         '''
  160.         
  161.         try:
  162.             (type, value, tb) = sys.exc_info()
  163.             sys.last_type = type
  164.             sys.last_value = value
  165.             sys.last_traceback = tb
  166.             tblist = traceback.extract_tb(tb)
  167.             del tblist[:1]
  168.             list = traceback.format_list(tblist)
  169.             if list:
  170.                 list.insert(0, 'Traceback (most recent call last):\n')
  171.             
  172.             list[len(list):] = traceback.format_exception_only(type, value)
  173.         finally:
  174.             tblist = None
  175.             tb = None
  176.  
  177.         map(self.write, list)
  178.  
  179.     
  180.     def write(self, data):
  181.         '''Write a string.
  182.  
  183.         The base implementation writes to sys.stderr; a subclass may
  184.         replace this with a different implementation.
  185.  
  186.         '''
  187.         sys.stderr.write(data)
  188.  
  189.  
  190.  
  191. class InteractiveConsole(InteractiveInterpreter):
  192.     '''Closely emulate the behavior of the interactive Python interpreter.
  193.  
  194.     This class builds on InteractiveInterpreter and adds prompting
  195.     using the familiar sys.ps1 and sys.ps2, and input buffering.
  196.  
  197.     '''
  198.     
  199.     def __init__(self, locals = None, filename = '<console>'):
  200.         '''Constructor.
  201.  
  202.         The optional locals argument will be passed to the
  203.         InteractiveInterpreter base class.
  204.  
  205.         The optional filename argument should specify the (file)name
  206.         of the input stream; it will show up in tracebacks.
  207.  
  208.         '''
  209.         InteractiveInterpreter.__init__(self, locals)
  210.         self.filename = filename
  211.         self.resetbuffer()
  212.  
  213.     
  214.     def resetbuffer(self):
  215.         '''Reset the input buffer.'''
  216.         self.buffer = []
  217.  
  218.     
  219.     def interact(self, banner = None):
  220.         """Closely emulate the interactive Python console.
  221.  
  222.         The optional banner argument specify the banner to print
  223.         before the first interaction; by default it prints a banner
  224.         similar to the one printed by the real Python interpreter,
  225.         followed by the current class name in parentheses (so as not
  226.         to confuse this with the real interpreter -- since it's so
  227.         close!).
  228.  
  229.         """
  230.         
  231.         try:
  232.             sys.ps1
  233.         except AttributeError:
  234.             sys.ps1 = '>>> '
  235.  
  236.         
  237.         try:
  238.             sys.ps2
  239.         except AttributeError:
  240.             sys.ps2 = '... '
  241.  
  242.         cprt = 'Type "help", "copyright", "credits" or "license" for more information.'
  243.         if banner is None:
  244.             self.write('Python %s on %s\n%s\n(%s)\n' % (sys.version, sys.platform, cprt, self.__class__.__name__))
  245.         else:
  246.             self.write('%s\n' % str(banner))
  247.         more = 0
  248.         while None:
  249.             
  250.             try:
  251.                 if more:
  252.                     prompt = sys.ps2
  253.                 else:
  254.                     prompt = sys.ps1
  255.                 
  256.                 try:
  257.                     line = self.raw_input(prompt)
  258.                 except EOFError:
  259.                     self.write('\n')
  260.                     break
  261.  
  262.                 more = self.push(line)
  263.             continue
  264.             except KeyboardInterrupt:
  265.                 self.write('\nKeyboardInterrupt\n')
  266.                 self.resetbuffer()
  267.                 more = 0
  268.                 continue
  269.             
  270.  
  271.  
  272.     
  273.     def push(self, line):
  274.         """Push a line to the interpreter.
  275.  
  276.         The line should not have a trailing newline; it may have
  277.         internal newlines.  The line is appended to a buffer and the
  278.         interpreter's runsource() method is called with the
  279.         concatenated contents of the buffer as source.  If this
  280.         indicates that the command was executed or invalid, the buffer
  281.         is reset; otherwise, the command is incomplete, and the buffer
  282.         is left as it was after the line was appended.  The return
  283.         value is 1 if more input is required, 0 if the line was dealt
  284.         with in some way (this is the same as runsource()).
  285.  
  286.         """
  287.         self.buffer.append(line)
  288.         source = '\n'.join(self.buffer)
  289.         more = self.runsource(source, self.filename)
  290.         if not more:
  291.             self.resetbuffer()
  292.         
  293.         return more
  294.  
  295.     
  296.     def raw_input(self, prompt = ''):
  297.         '''Write a prompt and read a line.
  298.  
  299.         The returned line does not include the trailing newline.
  300.         When the user enters the EOF key sequence, EOFError is raised.
  301.  
  302.         The base implementation uses the built-in function
  303.         raw_input(); a subclass may replace this with a different
  304.         implementation.
  305.  
  306.         '''
  307.         return raw_input(prompt)
  308.  
  309.  
  310.  
  311. def interact(banner = None, readfunc = None, local = None):
  312.     '''Closely emulate the interactive Python interpreter.
  313.  
  314.     This is a backwards compatible interface to the InteractiveConsole
  315.     class.  When readfunc is not specified, it attempts to import the
  316.     readline module to enable GNU readline if it is available.
  317.  
  318.     Arguments (all optional, all default to None):
  319.  
  320.     banner -- passed to InteractiveConsole.interact()
  321.     readfunc -- if not None, replaces InteractiveConsole.raw_input()
  322.     local -- passed to InteractiveInterpreter.__init__()
  323.  
  324.     '''
  325.     console = InteractiveConsole(local)
  326.     if readfunc is not None:
  327.         console.raw_input = readfunc
  328.     else:
  329.         
  330.         try:
  331.             import readline as readline
  332.         except ImportError:
  333.             pass
  334.  
  335.     console.interact(banner)
  336.  
  337. if __name__ == '__main__':
  338.     import pdb
  339.     pdb.run('interact()\n')
  340.  
  341.